home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
05
/
1
/
DISK0510.ZIP
/
COLOR
< prev
next >
Wrap
Text File
|
1985-08-08
|
512b
|
18 lines
PROGRAM COLOR; {a short demo to show how to set colors and modes}
VAR
MODE:INTEGER;
LETTERCOLOR:INTEGER;
BEGIN
WRITE('enter a mode(0..6 for graphics board, 7 for mono): ');
READLN(MODE);
SETMODE(MODE);
REPEAT
WRITE('enter a color: ');
READLN(LETTERCOLOR);
TEXTCOLOR(LETTERCOLOR);
WRITELN('this is color ',LETTERCOLOR);
UNTIL LETTERCOLOR = 7;
END.